home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zfont0.c < prev    next >
C/C++ Source or Header  |  1997-04-27  |  10KB  |  320 lines

  1. /* Copyright (C) 1991, 1992, 1993, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfont0.c */
  20. /* Composite font creation operator */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsstruct.h"
  25. /*
  26.  * The following lines used to say:
  27.  *    #include "gsmatrix.h"
  28.  *    #include "gxdevice.h"        /. for gxfont.h ./
  29.  * Tony Li says the longer list is necessary to keep the GNU compiler
  30.  * happy, but this is pretty hard to understand....
  31.  */
  32. #include "gxfixed.h"
  33. #include "gxmatrix.h"
  34. #include "gzstate.h"        /* must precede gxdevice */
  35. #include "gxdevice.h"        /* must precede gxfont */
  36. #include "gschar.h"
  37. #include "gxfcmap.h"
  38. #include "gxfont.h"
  39. #include "gxfont0.h"
  40. #include "bfont.h"
  41. #include "ialloc.h"
  42. #include "idict.h"
  43. #include "idparam.h"
  44. #include "igstate.h"
  45. #include "iname.h"
  46. #include "store.h"
  47.  
  48. /* Composite font procedures */
  49. extern font_proc_init_fstack(gs_type0_init_fstack);
  50. extern font_proc_define_font(gs_type0_define_font);
  51. extern font_proc_make_font(gs_type0_make_font);
  52. extern font_proc_next_glyph(gs_type0_next_glyph);
  53.  
  54. /* Imported from zfcmap.c */
  55. int ztype0_get_cmap(P3(const gs_cmap **ppcmap, const ref *pfdepvector,
  56.                const ref *op));
  57.  
  58. /* Forward references */
  59. private font_proc_define_font(ztype0_define_font);
  60. private font_proc_make_font(ztype0_make_font);
  61. private int ensure_char_entry(P4(os_ptr, const char _ds *, byte *, int));
  62.  
  63. /* <string|name> <font_dict> .buildfont0 <string|name> <font> */
  64. /* Build a type 0 (composite) font. */
  65. private int
  66. zbuildfont0(os_ptr op)
  67. {    ref *pfmaptype;
  68.     gs_type0_data data;
  69.     ref *pfdepvector;
  70.     ref *pprefenc;
  71.     gs_font_type0 *pfont;
  72.     font_data *pdata;
  73.     ref save_FID;
  74.     int i;
  75.     int code = 0;
  76.  
  77.     check_type(*op, t_dictionary);
  78.     if ( dict_find_string(op, "FMapType", &pfmaptype) <= 0 ||
  79.          !r_has_type(pfmaptype, t_integer) ||
  80.          pfmaptype->value.intval < (int)fmap_type_min ||
  81.          pfmaptype->value.intval > (int)fmap_type_max ||
  82.          dict_find_string(op, "FDepVector", &pfdepvector) <= 0 ||
  83.          !r_is_array(pfdepvector)
  84.        )
  85.         return_error(e_invalidfont);
  86.     data.FMapType = (fmap_type)pfmaptype->value.intval;
  87.     /* Check that every element of the FDepVector is a font. */
  88.     data.fdep_size = r_size(pfdepvector);
  89.     for ( i = 0; i < data.fdep_size; i++ )
  90.     {    ref fdep;
  91.         gs_font *psub;
  92.  
  93.         array_get(pfdepvector, i, &fdep);
  94.         if ( (code = font_param(&fdep, &psub)) < 0 )
  95.           return code;
  96.         /*
  97.          * Check the inheritance rules.  Allowed configurations
  98.          * (paths from root font) are defined by the regular
  99.          * expression:
  100.          *    (shift | double_escape escape* | escape*)
  101.          *      non_modal* non_composite
  102.          */
  103.         if ( psub->FontType == ft_composite )
  104.         {
  105. #define psub0 ((gs_font_type0 *)psub)
  106.             fmap_type fmt = psub0->data.FMapType;
  107.             if ( fmt == fmap_double_escape ||
  108.                  fmt == fmap_shift ||
  109.                  (fmt == fmap_escape &&
  110.                   !(data.FMapType == fmap_escape ||
  111.                 data.FMapType == fmap_double_escape))
  112.                )
  113.                 return_error(e_invalidfont);
  114. #undef psub0
  115.         }
  116.     }
  117.     switch ( data.FMapType )
  118.     {
  119.     case fmap_escape: case fmap_double_escape:    /* need EscChar */
  120.         code = ensure_char_entry(op, "EscChar", &data.EscChar, 255);
  121.         break;
  122.     case fmap_shift:            /* need ShiftIn & ShiftOut */
  123.         code = ensure_char_entry(op, "ShiftIn", &data.ShiftIn, 15);
  124.         if ( code >= 0 )
  125.           code = ensure_char_entry(op, "ShiftOut", &data.ShiftOut, 14);
  126.         break;
  127.     case fmap_SubsVector:            /* need SubsVector */
  128.       {    ref *psubsvector;
  129.         uint svsize;
  130.  
  131.         if ( dict_find_string(op, "SubsVector", &psubsvector) <= 0 ||
  132.              !r_has_type(psubsvector, t_string) ||
  133.              (svsize = r_size(psubsvector)) == 0 ||
  134.              (data.subs_width = (int)*psubsvector->value.bytes + 1) > 4 ||
  135.              (svsize - 1) % data.subs_width != 0
  136.            )
  137.             return_error(e_invalidfont);
  138.         data.subs_size = (svsize - 1) / data.subs_width;
  139.         data.SubsVector.data = psubsvector->value.bytes + 1;
  140.         data.SubsVector.size = svsize - 1;
  141.       }    break;
  142.     case fmap_CMap:                /* need CMap */
  143.         code = ztype0_get_cmap(&data.CMap, (const ref *)pfdepvector,
  144.                        (const ref *)op);
  145.         break;
  146.     default:
  147.         ;
  148.     }
  149.     if ( code < 0 )
  150.       return code;
  151.     /*
  152.      * Save the old FID in case we have to back out.
  153.      * build_gs_font will return an error if there is a FID entry
  154.      * but it doesn't reference a valid font.
  155.      */
  156.     { ref *pfid;
  157.       if ( dict_find_string(op, "FID", &pfid) <= 0 )
  158.         make_null(&save_FID);
  159.       else
  160.         save_FID = *pfid;
  161.     }
  162.     { build_proc_refs build;
  163.  
  164.       code = build_proc_name_refs(&build,
  165.                       "%Type0BuildChar", "%Type0BuildGlyph");
  166.       if ( code < 0 )
  167.         return code;
  168.       code = build_gs_font(op, (gs_font **)&pfont,
  169.                    ft_composite, &st_gs_font_type0, &build,
  170.                    bf_options_none);
  171.     }
  172.     if ( code != 0 )
  173.       return code;
  174.     /* Fill in the rest of the basic font data. */
  175.     pfont->procs.init_fstack = gs_type0_init_fstack;
  176.     pfont->procs.next_char = 0;    /* superseded by next_glyph */
  177.     pfont->procs.define_font = ztype0_define_font;
  178.     pfont->procs.make_font = ztype0_make_font;
  179.     pfont->procs.next_glyph = gs_type0_next_glyph;
  180.     if ( dict_find_string(op, "PrefEnc", &pprefenc) <= 0 )
  181.       { ref nul;
  182.  
  183.         make_null_new(&nul);
  184.         if ( (code = dict_put_string(op, "PrefEnc", &nul)) < 0 )
  185.           goto fail;
  186.       }
  187.     /* Fill in the font data */
  188.     pdata = pfont_data(pfont);
  189.     data.encoding_size = r_size(&pdata->Encoding);
  190.     data.Encoding =
  191.       (uint *)ialloc_byte_array(data.encoding_size, sizeof(uint),
  192.                     "buildfont0(Encoding)");
  193.     if ( data.Encoding == 0 )
  194.       { code = gs_note_error(e_VMerror);
  195.         goto fail;
  196.       }
  197.     /* Fill in the encoding vector, checking to make sure that */
  198.     /* each element is an integer between 0 and fdep_size-1. */
  199.     for ( i = 0; i < data.encoding_size; i++ )
  200.       {    ref enc;
  201.         array_get(&pdata->Encoding, i, &enc);
  202.         if ( !r_has_type(&enc, t_integer) )
  203.           { code = gs_note_error(e_typecheck);
  204.             goto fail;
  205.           }
  206.         if ( (ulong)enc.value.intval >= data.fdep_size )
  207.           { code = gs_note_error(e_rangecheck);
  208.             goto fail;
  209.           }
  210.         data.Encoding[i] = (uint)enc.value.intval;
  211.       }
  212.     data.FDepVector =
  213.       ialloc_struct_array(data.fdep_size, gs_font *,
  214.                   &st_gs_font_ptr_element,
  215.                   "buildfont0(FDepVector)");
  216.     if ( data.FDepVector == 0 )
  217.       { code = gs_note_error(e_VMerror);
  218.         goto fail;
  219.       }
  220.     for ( i = 0; i < data.fdep_size; i++ )
  221.     {    ref fdep;
  222.         ref *pfid;
  223.         array_get(pfdepvector, i, &fdep);
  224.         /* The lookup can't fail, because of the pre-check above. */
  225.         dict_find_string(&fdep, "FID", &pfid);
  226.         data.FDepVector[i] = r_ptr(pfid, gs_font);
  227.     }
  228.     pfont->data = data;
  229.     code = define_gs_font((gs_font *)pfont);
  230.     if ( code >= 0 )
  231.       return code;
  232. fail:    /* Undo the insertion of the FID entry in the dictionary. */
  233.     if ( r_has_type(&save_FID, t_null) )
  234.       { ref rnfid;
  235.  
  236.         name_enter_string("FID", &rnfid);
  237.         dict_undef(op, &rnfid);
  238.       }
  239.     else
  240.       dict_put_string(op, "FID", &save_FID);
  241.     gs_free_object(pfont->memory, pfont, "buildfont0(font)");
  242.     return code;
  243. }
  244. /* If a newly defined or scaled composite font had to scale */
  245. /* any composite sub-fonts, adjust the parent font's FDepVector. */
  246. /* This is called only if gs_type0_define/make_font */
  247. /* actually changed the FDepVector. */
  248. private int
  249. ztype0_adjust_FDepVector(gs_font_type0 *pfont)
  250. {    gs_font **pdep = pfont->data.FDepVector;
  251.     ref newdep;
  252.     uint fdep_size = pfont->data.fdep_size;
  253.     ref *prdep;
  254.     uint i;
  255.     int code = ialloc_ref_array(&newdep, a_readonly, fdep_size,
  256.                     "ztype0_adjust_matrix");
  257.     if ( code < 0 )
  258.         return code;
  259.     for ( prdep = newdep.value.refs, i = 0; i < fdep_size; i++, prdep++ )
  260.     {    const ref *pdict = pfont_dict(pdep[i]);
  261.         ref_assign_new(prdep, pdict);
  262.     }
  263.     return dict_put_string(pfont_dict(pfont), "FDepVector", &newdep);
  264. }
  265. private int
  266. ztype0_define_font(gs_font_dir *pdir, gs_font *pfont)
  267. {
  268. #define pfont0 ((gs_font_type0 *)pfont)
  269.     gs_font **pdep = pfont0->data.FDepVector;
  270.     int code = gs_type0_define_font(pdir, pfont);
  271.     if ( code < 0 || pfont0->data.FDepVector == pdep )
  272.         return code;
  273.     return ztype0_adjust_FDepVector(pfont0);
  274. #undef pfont0
  275. }
  276. private int
  277. ztype0_make_font(gs_font_dir *pdir, const gs_font *pfont,
  278.   const gs_matrix *pmat, gs_font **ppfont)
  279. {
  280. #define ppfont0 ((gs_font_type0 **)ppfont)
  281.     gs_font **pdep = (*ppfont0)->data.FDepVector;
  282.     int code;
  283.     code = zdefault_make_font(pdir, pfont, pmat, ppfont);
  284.     if ( code < 0 )
  285.         return code;
  286.     code = gs_type0_make_font(pdir, pfont, pmat, ppfont);
  287.     if ( code < 0 )
  288.         return code;
  289.     if ( (*ppfont0)->data.FDepVector == pdep )
  290.         return 0;
  291.     return ztype0_adjust_FDepVector(*ppfont0);
  292. #undef ppfont0
  293. }
  294.  
  295. /* ------ Internal routines ------ */
  296.  
  297. /* Find or add a character entry in a font dictionary. */
  298. private int
  299. ensure_char_entry(os_ptr op, const char _ds *kstr,
  300.   byte *pvalue, int default_value)
  301. {    ref *pentry;
  302.     if ( dict_find_string(op, kstr, &pentry) <= 0 )
  303.       {    ref ent;
  304.         make_int(&ent, default_value);
  305.         *pvalue = (byte)default_value;
  306.         return dict_put_string(op, kstr, &ent);
  307.       }
  308.     else
  309.       {    check_int_leu_only(*pentry, 255);
  310.         *pvalue = (byte)pentry->value.intval;
  311.         return 0;
  312.       }
  313. }
  314.  
  315. /* ------ Initialization procedure ------ */
  316.  
  317. BEGIN_OP_DEFS(zfont0_op_defs) {
  318.     {"2.buildfont0", zbuildfont0},
  319. END_OP_DEFS(0) }
  320.